fmt.pp.arg (field)
17 uses
fmt (current package)
print.go#L124: arg any
print.go#L178: p.arg = nil
print.go#L387: case p.arg != nil:
print.go#L388: p.buf.writeString(reflect.TypeOf(p.arg).String())
print.go#L390: p.printArg(p.arg, 'v')
print.go#L627: _, ok := p.arg.(error)
print.go#L637: if formatter, ok := p.arg.(Formatter); ok {
print.go#L639: defer p.catchPanic(p.arg, verb, "Format")
print.go#L646: if stringer, ok := p.arg.(GoStringer); ok {
print.go#L648: defer p.catchPanic(p.arg, verb, "GoString")
print.go#L663: switch v := p.arg.(type) {
print.go#L666: defer p.catchPanic(p.arg, verb, "Error")
print.go#L672: defer p.catchPanic(p.arg, verb, "String")
print.go#L682: p.arg = arg
print.go#L748: p.arg = f.Interface()
print.go#L769: p.arg = value.Interface()
print.go#L774: p.arg = nil
|
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64)
Golds is a Go 101 project developed by Tapir Liu.
PR and bug reports are welcome and can be submitted to the issue list.
Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |